home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / TCP_IP / TNOS230S / KISS.H < prev    next >
C/C++ Source or Header  |  1996-09-03  |  349b  |  18 lines

  1. #ifndef    _KISS_H
  2. #define    _KISS_H
  3.  
  4. #ifndef    _MBUF_H
  5. #include "mbuf.h"
  6. #endif
  7.  
  8. #ifndef    _IFACE_H
  9. #include "iface.h"
  10. #endif
  11.  
  12. /* In kiss.c: */
  13. int kiss_raw (struct iface *iface,struct mbuf *data);
  14. void kiss_recv (struct iface *iface,struct mbuf *bp);
  15. int32 kiss_ioctl (struct iface *iface,int cmd,int set,int32 val);
  16.  
  17. #endif    /* _KISS_H */
  18.